home *** CD-ROM | disk | FTP | other *** search
/ Java Certification Exam Guide / McGrawwHill-JavaCertificationExamGuide.iso / pc / Web Links and Code / rev / chap9 / q2.java < prev    next >
Encoding:
Java Source  |  1997-05-08  |  339 b   |  16 lines

  1. class Example1 {
  2.    public static void main(String[] args) {
  3.       Example1 e = new Example1();
  4.       e.test(5, 5.0, 5L);
  5.    }
  6.  
  7.    void test(double a, double b, double c) {
  8.       System.out.println("double, double, double");
  9.    }
  10.  
  11.    void test(int a, float b, long c) {
  12.       System.out.println("int, float, long");
  13.    }
  14.  
  15. }
  16.